go/ast.EmptyStmt.Semicolon (field)

6 uses

	go/ast (current package)
		ast.go#L626: 		Semicolon token.Pos // position of following ";"
		ast.go#L773: func (s *EmptyStmt) Pos() token.Pos      { return s.Semicolon }
		ast.go#L797: 		return s.Semicolon
		ast.go#L799: 	return s.Semicolon + 1 /* len(";") */

	go/parser
		parser.go#L2471: 		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: p.lit == "\n"}
		parser.go#L2475: 		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: true}